home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power CD
/
Power CD ATARI-Rechner Lieben.iso
/
ALLERLEI
/
GOBJ_112
/
SOURCE
/
MINIMAL.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1994-03-05
|
208 b
|
12 lines
program Minimal;
{ minimales ObjectGEM-Programm }
uses OWindows;
var MyApplication: TApplication;
begin
MyApplication.Init('MINI','Minimal');
MyApplication.Run;
MyApplication.Done
end.